home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
The Programmer Disk
/
The Programmer Disk (Microforum).iso
/
xpro
/
c4
/
pro2
/
1n04048a
< prev
next >
Wrap
Text File
|
1990-07-19
|
420b
|
21 lines
nChoice = disp_menu();
while (nChoice != EXIT)
{
switch (nChoice)
{
case CHOICE_1:
DoSomething();
break;
case CHOICE_2:
DoSomething();
break;
etc.
}
nChoice = disp_menu();
}